home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / rpc / ds3100.md / rpcDelays.c < prev   
C/C++ Source or Header  |  1992-12-18  |  2KB  |  58 lines

  1. /* 
  2.  * rpcDelay.c --
  3.  *
  4.  *    Get perferred machine dependent inter-packet delays for rpcs.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/rpc/ds3100.md/rpcDelays.c,v 1.1 91/10/22 15:38:34 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include "sprite.h"
  22. #include "mach.h"
  23. #include "sys.h"
  24.  
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * RpcGetMachineDelay --
  30.  *
  31.  *    Get preferred inter-fragment delay for input and output packets.
  32.  *    This is approximately a microsecond value for how long this
  33.  *    machine-type takes to turn a packet around.
  34.  *
  35.  * Results:
  36.  *    None.
  37.  *
  38.  * Side effects:
  39.  *    None.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. void
  45. RpcGetMachineDelay(myDelayPtr, outputRatePtr)
  46.     unsigned short    *myDelayPtr;    /* Preferred delay in microseconds
  47.                      * between successive input packets.
  48.                      */
  49.     unsigned short    *outputRatePtr;    /* Delay in microseconds between
  50.                      * successive output packets.
  51.                      */
  52. {
  53.     *myDelayPtr = 500;            /* Same as sun3 value */
  54.     *outputRatePtr = 500;
  55.     return;
  56. }
  57.  
  58.